C# |
---|
public String GetToken(Int16 tokenIndex) |
C# |
---|
using LJCNetCommon; var tokenizer = new CodeTokenizer(); string text = " string text = " // This is a comment."; tokenizer.SetTokens(text); short tokenIndex = 0; string token = tokenizer.GetToken(tokenIndex); // Value token = "//". |